/* @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
}

.bg-blu-pri {
    background: #1a1f49;
}

.btn-blu-sec {
    background: #3230c1;
    color: #FFF9D0;
    font-size: 18px;
    font-weight: 600;
    padding: .4rem 1.8rem;
    border-radius: 20px;
    border: 4px solid #FFF9D0;
    transition: .3s ease-in-out;
}

.btn-blu-sec:hover {
    background: #4637f5;
    transform: scale(.9);
}

.bg-blue-sec {
    background: #aedae7;
    font-weight: 700;
    color: darkcyan;
}

.logo {
    height: 4rem;
}

.service-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.nav-option {
    padding-top: 14px;
    padding-bottom: 14px;
    margin-left: 30px;
    transition: .3s ease-in;
}

.nav-option a {
    text-decoration: none;
    color: #000;
}

.navoption {
    position: relative;
    width: 10vw;
    background: #262626;
    margin: 10px;
    height: 13vw;
    display: flex;
    margin-top: 7px;
    margin-bottom: 7px;
    align-items: center;
    flex-direction: column;
    color: #fff;
    outline: none;
    border: none;
    text-align: center;
    transition: .3s ease-in-out;
}

.navoption::before {
    position: absolute;
    content: '';
    z-index: 11;
    width: 100%;
    height: 100%;
}

.navoption:hover {
    background: #5AB2FF;
}

.navoption img {
    margin-top: 10px;
    background: #fff;
}


.navoption img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.nav-subMenu {
    display: none;
    background: #323232;
    color: #fff;
    position: absolute;
    text-align: center;
    z-index: 10;
    width: 97vw;
    margin: auto;
    align-items: center;
    justify-content: flex-start;
    left: 10px;
    top: 7.5rem;
    flex-wrap: wrap;
}

.nav-option:hover .nav-subMenu {
    display: flex;
}

.carousel-bg {
    position: relative;
}

.carousel-bg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
}

.hero-div {
    color: rgb(0, 69, 69);
    position: relative;
    background: url(../images/carousel-bg1.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-div::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(174, 218, 231, 0.7);
}

.hero {
    margin-top: 10px;
    margin-bottom: 50px;
}

.hero-con {
    height: 100%;
    padding: 80px 80px;
    display: flex;
    text-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
}

.typewriter h3 {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    text-align: start;
    margin: 0 auto;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

.hero-con p {
    font-weight: 600;
}

.hero-icon {
    color: red;
    padding-right: 10px;
    padding-left: 10px;
}

.hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img img {
    width: auto;
    height: 32rem;
    filter: drop-shadow(1px 10px 2px rgba(0, 0, 0, 0.4));
}

.info-card {
    position: relative;
    top: -2rem;
    background: #3230c1;
    color: #fff;
    margin: 1px 35px;
    padding: 12px 5px;
    border: 2px solid black;
    border-radius: 12px;
    box-shadow: inset 2px 2px 5px #fff;
    transition: .3s ease-in;
}

.nav-suboption {
    display: none;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 2px 2px 5px #fff, 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    ;
}

.about-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img video {
    width: 100%;
    /* height: 80%; */
    /* transform: rotateY(180deg); */
}

.service-card {
    position: relative;
    margin: 50px auto;
    width: 10rem;
    height: 12rem;
    border: 5px solid #A0DEFF;
    border-radius: 12px;
    display: flex;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* align-items: center; */
    justify-content: space-between;
    flex-direction: column;
    transition: .3s ease-in;
}

.service-card:hover {
    transform: scale(1.1);
}

.service-img {
    margin: auto;
    width: 60px;
    height: 60px;
}

.service-card h5 {
    background: #A0DEFF;
    text-align: center;
    padding: 5px 1px;
    margin: 0;
}

.ser-ben {
    position: relative;
    background: url(../images/banner2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 16px auto;
    padding-top: 20px;
    padding-left: 20px;
}

.ser-ben::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
}

.contact-sec {
    height: 100%;
}

.contact-sec h4 {
    align-content: center;
    font-size: 30px;
    height: 20%;
    padding: 40px 2px 40px 2px;
}

.contact-sec ul {
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.grow-con {
    position: relative;
    z-index: 3;
}

.grow-con h2 {
    padding-bottom: 4rem;
    font-size: 50px;
    font-weight: 700;
}

.help-card {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help-img {
    position: relative;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
    z-index: 4;
}

.help-img img {
    position: absolute;
    width: 50px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 5;
}

.help-card p {
    font-size: 22px;
    font-weight: 600;
}

.tech-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    margin: 30px 5px;
}

.tech {
    width: 9%;
    height: 8rem;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    transition: .3s ease-in;
}

.tech img {
    width: 60%;
    margin: auto;
}

.tech:hover {
    transform: scale(1.1);
}

.testimonial-sec {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: relative;
    padding: 20px 2px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid black;
    border-radius: 12px;
    text-align: center;
}

.test-quote {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 50px;
    color: #aedae7;
}

.testi1-img {
    background: url(../images/testimonal/test1.jfif);
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.testi2-img {
    background: url(../images/testimonal/test2.jfif);
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.review-star {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-star i {
    color: #FFD700;
    font-size: 14px;
}

.clinet-sec {
    width: 80%;
    height: 4rem;
    padding: 2px 10px;
    /* background: #fff; */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-top: 2rem;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinet-sec img {
    width: 80%;
    height: auto;
}

footer {
    text-align: start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: start;
}

.social-link p {
    border: 2px solid #a3a3a3;
    width: 18px;
    height: 18px;
    font-size: 18px;
    padding: 18px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.social-link p:hover {
    border: 2px solid #fff;
}

.social-link p:hover .fb {
    color: #1877F2;
}

.social-link p:hover .tw {
    color: #1DA1F2;
}

.social-link p:hover .yt {
    color: #FF0000;
}

.social-link p:hover .ig {
    background: -webkit-linear-gradient(rgba(98, 40, 215, 1) 0%, rgba(238, 42, 123, 1) 50%, rgba(249, 206, 52, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-ser li {
    list-style: none;
}

.footer-ser li a {
    text-decoration: none;
    color: #a3a3a3;
}

.footer-ser li a:hover {
    color: #fff;
}

.banner {
    position: relative;
    z-index: 1;
    /* background: url(../images/banner4_cleanup.jpg); */
    background: url(../images/digital-framework-featured-image.png);
    background-size: contain;
    background-position: center;
    overflow: hidden;
    height: 40vh;
    /* background: rgba(0, 0, 0, 0.5); */
    /* background: #FFFAE6; */

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: right; */
}

.breadcrumb>li{
    color: #fff;
}

.breadcrumb-item a{
    color: #fff;
    text-decoration: none;
}

.banner::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    top: 0;
    left: 0;
}

.banner-cont {
    position: relative;
    z-index: 8;
    width: 100%;
    height: 100%;
    bottom: 0;
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    color: #fff;
}

.banner-cont h4{
    position: relative;
    top: 80%;
    font-size: 28px;
}

.banner img {
    width: 100vw;
    height: auto;
}

.rel-ser-container {
    background: #002379;
    border-radius: 12px;
    color: #fff;
}

.rel-ser-container h4 {
    text-align: center;
    padding-top: 8px;
}

.rel-ser {
    padding-bottom: 12px;
    height: 10rem;
    overflow: auto;
}

.rel-ser::-webkit-scrollbar {
    width: 8px;
}

.rel-ser::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 10px;
}

.rel-ser::-webkit-scrollbar-thumb {
    background: #3230c1;
    border-radius: 10px;
}

.rel-ser p {
    border-bottom: 1px solid #fff;
    padding-left: 15px;
}

.rel-ser a {
    text-decoration: none;
    color: #fff;
}

.contact-head {
    font-size: 50px;
    font-weight: 700;
}

.page-breadcrumb {
    position: relative;
    left: 8px;
}

.loc-con {
    margin: 3rem auto;
    width: 95vw;
    position: relative;
}

.loc-con::before {
    position: absolute;
    content: '';
    left: 0;
    width: 20vw;
    height: 100%;
    z-index: 5;
    background: rgb(121, 121, 121);
    background: linear-gradient(90deg, rgba(121, 121, 121, 1) 0%, rgba(0, 0, 0, 0) 20%);

}

.loc-con::after {
    position: absolute;
    content: '';
    right: 0;
    width: 20vw;
    height: 100%;
    z-index: 5;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 80%, rgba(121, 121, 121, 1) 100%);
}

.con-cont {
    padding: 3rem;
    height: 100%;
    /* font-weight: 600; */
    /* font-size: 20px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.ser-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ser-img img {
    height: 250px;
}

.ser-con {
    line-height: 2rem;
}

.contact-form-sec {
    /* padding: 10px 1px; */
    margin-top: 3rem;
    background: url(../images/contact-img-3.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-form {
    width: 80%;
    margin: 30px auto;
    /* padding: 25px; */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.contact-form label {
    color: #fff;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.8);
}

footer {
    padding-top: 20px;
    background: #000;
    color: #fff;
}

.nav-item {
    margin-right: 20px;
    font-weight: 700;
    font-size: 20px;
}

.nav-links {
    text-decoration: none;
    text-align: center;
    align-content: center;
    color: #c9c9c9;
}

.nav-links:hover {
    color: #fff;
}

.active-nav {
    color: #fff;
}

.heading-h2 {
    color: #5d6cf9;
    font-weight: 600;
    font-size: 42px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.heading-h2-sec {
    color: #fff;
    font-weight: 600;
    font-size: 42px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.client-bg {
    position: relative;
    /* background: #f3f3f3; */
    background: url(../images/cli-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 20rem;
}
.client-container{
    position: relative;
    height: 100%;
    bottom: 20%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.loader-container {
    position: fixed;
    z-index: 98;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
}

.loader {
    position: absolute;
    z-index: 99;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-right-color: red;
    border-radius: 50%;
    animation: load 1s linear infinite;
}

.loaded .loader-container {
    display: none;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
}

.popup-form {
    position: relative;
    z-index: 51;
    width: 40vw;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
}

.closebtn {
    position: absolute;
    z-index: 52;
    background: #000;
    color: #FFFAE6;
    border-radius: 50%;
    padding: 10px;
    top: -15px;
    right: -15px;
    border: 3px solid #fff;
}

.popupForm input, .popupForm textarea{
background: transparent;
border-bottom: 3px solid #ccc;
}

.job-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.job-form{
    border-radius: 12px;
    overflow: hidden;
}

.job-form h3{
    background: #3230c1;
    color: #fff;
    padding: 20px 2px;
}

.file-info{
    color: #646464;
    font-size: 10px;
}

@keyframes load {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange;
    }
}